home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / GCC 1.37.1r14 / usr / gcc-1.37.1r14 / object oriented files / CResListPane.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-18  |  668 b   |  31 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CResListPane.h
  3.  
  4.         
  5.     SUPERCLASS = CArrayPane
  6.     
  7.     Copyright © 1991 Symantec Corporation. All rights reserved.
  8.     
  9.     TCL 1.1.3 Changes
  10.     [
  11.         - use #pragma once
  12.     ]
  13.  ******************************************************************************/
  14.  
  15. #pragma once
  16.  
  17. #include "CArrayPane.h"
  18.  
  19. class CResListPane : public CArrayPane
  20. {
  21. public:
  22.  
  23.     void IResListPane( CView *anEnclosure, CBureaucrat *aSupervisor,
  24.                             short aWidth, short aHeight,
  25.                             short aHEncl, short aVEncl,
  26.                             SizingOption aHSizing, SizingOption aVSizing);
  27. protected:
  28.  
  29.     virtual void DrawCell( Cell theCell, Rect *cellRect);
  30.  
  31. };